home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 November: Tool Chest / Dev.CD Nov 94.toast / New System Software Extensions / Thread Manager Extension 2.0.1 / Sample Applications / Power Examples / NativeThreadTestApp / Source / NativeThreadTestApp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-03  |  889 b   |  48 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        NativeThreadTestApp.h
  3.  
  4.     Contains:    Header file for the NativeThreadTestApp.
  5.  
  6.     Written by:    Brad Post
  7.  
  8.     Copyright:    © 1993 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.         <1+>     8/13/93    bsp        Leaving open for modifications.....
  13.          <1>     8/13/93    bsp        first checked in
  14. */
  15.  
  16. #include <Events.h>
  17. #include <Fonts.h>
  18. #include <Menus.h>
  19. #include <Slots.h>
  20. #include <Dialogs.h>
  21. #include <Windows.h>
  22. #include <Quickdraw.h>
  23. #include <Types.h>
  24. #include <Errors.h>
  25. #include <Traps.h>
  26. #include <GestaltEqu.h>
  27. #include <Threads.h>
  28.  
  29. /*
  30.  *  Defines for all of the tool to use.
  31.  */
  32.  
  33. #define errorALRT            1000
  34.  
  35. #define fileMenuID            1000
  36. #define fileMenu            2
  37. #define    fmNew                1
  38. #define    fmQuit                3
  39.  
  40. #define aboutALRT            1001
  41.  
  42. #define appleMenuID            1
  43.  
  44. extern myAlert(Str255 theString);
  45. extern InitAll();
  46. extern createNewThread();
  47. extern myNotify( Str255 theMessage );
  48.